Skip to content

Bump @builder.io/qwik from 1.5.2 to 1.9.1 in /qwik-docs#128

Open
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/npm_and_yarn/qwik-docs/builder.io/qwik-1.9.1
Open

Bump @builder.io/qwik from 1.5.2 to 1.9.1 in /qwik-docs#128
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/npm_and_yarn/qwik-docs/builder.io/qwik-1.9.1

Conversation

@dependabot
Copy link

@dependabot dependabot bot commented on behalf of github Nov 5, 2024

Bumps @builder.io/qwik from 1.5.2 to 1.9.1.

Release notes

Sourced from @​builder.io/qwik's releases.

@​builder.io/qwik-city@1.9.1

Patch Changes

  • ✨ Experimental feature - noSPA. (by @​wmertens in #6937) This disables history patching, slightly reducing code size and startup time. Use this when your application is MPA only, meaning you don't use the Link component. To enable this, add it to the experimental array of the qwikVite plugin (not the qwikCity plugin).

@​builder.io/qwik@1.9.1

Patch Changes

  • ✨ showing qrl parent names. (by @​wmertens in #6881) in dev mode, qrl segments now start with their parent filename so it's easy to see where they came from. Furthermore, in production builds these filenames are also used so that origins in q-manifest.json are easy to understand.

  • 🐞🩹 Optimizer now ignores unknown deps in graph that caused crashes during build (by @​wmertens in #6888)

  • 🐞🩹 Do not allow object methods to be serialized with style prop (by @​jakovljevic-mladen in #6932)

  • 🐞🩹 In dev mode, changes to QRLs now explicitly invalidate the segment so that the browser will reload it (by @​wmertens in #6938)

@​builder.io/qwik-city@1.9.0

Minor Changes

  • (EXPERIMENTAL) valibot$ validator and a fix for zod$ types. (by @​fabian-hiller in #6752)

    To use it, you need to pass experimental: ['valibot'] as an option to the qwikVite plugin as such:

    // vite.config.ts
    export default defineConfig(({ command, mode }): UserConfig => {
    return {
    plugins: [
    // ... other plugins like qwikCity() etc
    qwikVite({
    experimental: ['valibot']
    // ... other options
    }),
    ],
    // ... rest of the config
    
    };
    }

  • (EXPERIMENTAL) usePreventNavigate lets you prevent navigation while your app's state is unsaved. It works asynchronously for SPA navigation and falls back to the browser's default dialogs for other navigations. To use it, add experimental: ['preventNavigate'] to your qwikVite options. (by @​wmertens in #6825)

Patch Changes

... (truncated)

Changelog

Sourced from @​builder.io/qwik's changelog.

1.9.1

Patch Changes

  • ✨ showing qrl parent names. (by @​wmertens in #6881) in dev mode, qrl segments now start with their parent filename so it's easy to see where they came from. Furthermore, in production builds these filenames are also used so that origins in q-manifest.json are easy to understand.

  • 🐞🩹 Optimizer now ignores unknown deps in graph that caused crashes during build (by @​wmertens in #6888)

  • 🐞🩹 Do not allow object methods to be serialized with style prop (by @​jakovljevic-mladen in #6932)

  • 🐞🩹 In dev mode, changes to QRLs now explicitly invalidate the segment so that the browser will reload it (by @​wmertens in #6938)

1.9.0

Patch Changes

  • ✨ Introducing the experimental[] option to the Vite plugin. This allows you to opt in to features that are not guaranteed to have a stable API. (by @​wmertens in #6880)

  • 🐞🩹 fix typo in using useStore() (by @​zaynet in #6875)

  • 🐞🩹 gracefully handle image dimensions service errors (by @​JerryWu1234 in #6855)

  • ✨ Lib builds no longer perform qwik transformation. (by @​wmertens in #6850)

    This prevents using unstable internal APIs, and doesn't make a difference for the end user. Library authors are strongly urged to push a new library patch version built with this qwik version, and to add | ^2.0.0 to their accepted qwik version range.

  • 🐞🩹 SSG Link component strips search parameters (by @​JerryWu1234 in #6778)

  • 🐞🩹 The PrefetchServiceWorker now has a more efficient graph and only prefetches direct imports and, at a lower priority, task QRL segments. This greatly improves its load performance. (by @​wmertens in #6853)

1.8.0

Minor Changes

  • Updated SWC parser means that the optimizer now understands import ... with syntax and that enums are replaced with numbers where possible. (by @​wmertens in #6005)

  • The optimizer plugin will now rely on Rollup to group QRL segments. It will only provide hints on which segments fit well together. The result of this change is that now code splitting happens during the transform phase only, and other Rollup/Vite plugins (such as css-in-js plugins) can transform the code before Qwik transforms it. (by @​wmertens in #6670)

  • The default asset filenames in the build have changed. Now they are under assets/hash-name.ext, so they are clearly separated from code. (by @​wmertens in #5745)

Patch Changes

  • The fileFilter option to qwikVite() now always allows *.qwik.{m,c,}js files so that QRLs in libraries can be processed. (by @​wmertens in #6760)

1.7.3

1.7.2

Patch Changes

... (truncated)

Commits
  • 6ba3052 Version Packages
  • a69de93 fix(dev): invalidate segments on parent change
  • 54d6a24 fix: do not serialize methods of objects passed to styles (#6932)
  • 37962aa refactor(optimizer): allow documenting experimental features
  • 1375147 feat(qwik-city): noSPA disables history patching
  • dd2e8fa fix(optimizer): don't crash when no input defined (#6812)
  • d03b04b fix: rust snapshot
  • a74c8a0 feat(dev): add parent filename to qrl segments (#6881)
  • 5a0c31d fix(optimizer): Backported the fix `mark fn`` children as jsx mutable (#6847)...
  • ae09275 fix(optimizer): ignore unknown deps in graph
  • Additional commits viewable in compare view
Maintainer changes

This version was pushed to npm by shairez, a new releaser for @​builder.io/qwik since your current version.


Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
    You can disable automated security fix PRs for this repo from the Security Alerts page.

Bumps [@builder.io/qwik](https://github.com/QwikDev/qwik/tree/HEAD/packages/qwik) from 1.5.2 to 1.9.1.
- [Release notes](https://github.com/QwikDev/qwik/releases)
- [Changelog](https://github.com/QwikDev/qwik/blob/main/packages/qwik/CHANGELOG.md)
- [Commits](https://github.com/QwikDev/qwik/commits/@builder.io/qwik@1.9.1/packages/qwik)

---
updated-dependencies:
- dependency-name: "@builder.io/qwik"
  dependency-type: direct:development
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added the dependencies Pull requests that update a dependency file label Nov 5, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants